Case Sensitive "WHERE" Clauses? - Mailing list pgsql-sql

From Jordan Reiter
Subject Case Sensitive "WHERE" Clauses?
Date
Msg-id a05100312b9b8f9c321b3@[63.172.201.5]
Whole thread Raw
Responses Re: Case Sensitive "WHERE" Clauses?  (Andrew Perrin <clists@perrin.socsci.unc.edu>)
Re: Case Sensitive "WHERE" Clauses?  (Dan Langille <dan@langille.org>)
Re: Case Sensitive "WHERE" Clauses?  (Ian Barwick <barwick@gmx.net>)
List pgsql-sql
Are string comparisons in postgresql case sensitive?

I keep on having this response:

SELECT *
FROM People
WHERE first_name='jordan'

Result: 0 records

SELECT *
FROM People
WHERE first_name='Jordan'

Result: 1 record

I though that string matching in SQL was case-insensitive. Isn't this correct? If not, what workarounds have been used
successfullybefore? Obviously, formatting the search string for the query is not a solution...
 
-- 

Jordan Reiter                          mailto:jordan@breezing.com
Breezing.com                           http://breezing.com
1106 West Main St                      phone:434.295.2050
Charlottesville, VA 22903              fax:603.843.6931


pgsql-sql by date:

Previous
From: Jordan Reiter
Date:
Subject: None
Next
From: Andrew Perrin
Date:
Subject: Re: Case Sensitive "WHERE" Clauses?